home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / getlogin.c < prev    next >
C/C++ Source or Header  |  1989-07-21  |  407b  |  22 lines

  1. /*
  2.  * getlogin.c --
  3.  *
  4.  *    Emulate the UNIX getlogin() function. Since we have no /etc/utmp,
  5.  *    we have to rely on the USER envariable being set correctly...
  6.  *
  7.  * Copyright (c) 1987 by the Regents of the University of Californai
  8.  * All Rights Reserved
  9.  */
  10. #include <sprite.h>
  11. #include <proc.h>
  12.  
  13. char *
  14. getlogin()
  15. {
  16.     char    *name;
  17.     extern char *getenv();
  18.  
  19.     name = getenv("USER");
  20.     return (name);
  21. }
  22.